Introspection is an act of self examination and is the greatest strength of Python. As you know, everything in Python is an object, and introspection is code looking at other modules and functions in memory as objects, getting information about them, and manipulating them. Along the way, you’ll define functions with no name, call functions with arguments out of order, and reference functions whose names you don’t even know ahead of time
To get in depth knowledge on Python you can enroll for free demo Python Online training
In computer programming, introspection is the ability to determine the type of an object at runtime. Python programming language has a large support of introspection. Everything in Python is an object. Every object in Python may have attributes and methods. By using introspection, we can dynamically inspect Python objects.
Introspection reveals useful information about your program’s objects. Python, being a dynamic, object-oriented programming language, provides tremendous introspection support. Python’s support for introspection runs deep and wide throughout the language. In fact, it would be hard to imagine Python without its introspection features. It has the ability to determine the type of an object at runtime. Henceforth, by using introspection, we dynamically inspect the Python objects.
Code introspection is required for examining into other modules, classes, functions, keywords or objects and retrieving information about them so that manipulation can be carried out, if necessary. Python provides several functions and utilities for code introspection. Along with it, you can also define call functions and reference functions with no name .
Learn for more what are the Python functions
Built- in functions mentioned in the chapter on functions are used for code introspection. Have a look at some of the following examples.
Leave Comment